home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 23 / IOPROG_23.ISO / SOFT / TEXPLIST.ZIP / demo / Delphi 4 / Project1.dpr < prev    next >
Encoding:
Text File  |  1999-01-31  |  295 b   |  17 lines

  1. program Project1;
  2.  
  3. uses
  4.   Forms,
  5.   unit1 in 'unit1.pas' {Form1},
  6.   ELV_Strings in '..\ELV_Strings.pas',
  7.   people in 'people.pas',
  8.   ExportLVReg in '..\ExportLVReg.pas';
  9.  
  10. {$R *.RES}
  11.  
  12. begin
  13.   Application.Initialize;
  14.   Application.CreateForm(TForm1, Form1);
  15.   Application.Run;
  16. end.
  17.